home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1993 Robert Davis
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of Version 2, or any later version, of
- * the GNU General Public License as published by the Free Software
- * Foundation.
- */
-
- /* $Id: ContourOptionsPanel.h,v 1.7 1993/05/04 16:21:23 davis Exp $ */
-
-
- #import "OptionsPanel.h"
-
- @class Pane;
-
- @interface ContourOptionsPanel:OptionsPanel
- {
- BOOL enabled;
-
- id kindMatrix;
- id pointsField;
- id orderField;
- id keyButton;
-
- id levelsKindButton;
- id levelsKindField;
- id levelsKindBox;
-
- Pane *autoPane, /* The Panes */
- *seriesPane,
- *userPane,
- *currentPane;
- }
-
- - init;
- - free;
-
- - (BOOL)isEnabled;
-
- - doSetKind:sender;
- - doSetPoints:sender;
- - doSetOrder:sender;
- - doSetLevelsKind:sender;
- - doSetKey:sender;
-
- @end
-